If your code does not require a doubly linked list you may want to reconsider using 如果代码不要求双向链接表,可能需要重新考虑使用
Doubly linked list 双向链表
Is a doubly linked list , so element insertion is fast at the head , tail , and at a known position 是双向链接表,因此头、尾和表中已知位置(
Because doubly linked list can dynamically distribute store place , it is used in storing the offsets data of ship . through adding and deleting the node , we can easily add the offsets data and modify the model 系统采用双链表来存储船体的型值点数据,之所以采用双链表,是因为其可以动态分配存储空间,同时可以很方便地增删节点,从而进行船舶型值点加密以及模型修改。
In computer science, a doubly linked list is a linked data structure that consists of a set of sequentially linked records called nodes. Each node contains two fields, called links, that are references to the previous and to the next node in the sequence of nodes.
doubly linked listとは意味:<→DOUBLY-LINKED list> doubly linked list meaning:[Computer] < programming > A data structure in which each element contains pointers to the next and previous elements in the list, thus forming a bidirectional linear list.